/* Common elements */
html,body { margin:0; padding:0 }
body { background:#fff; font:normal 14px/20px Arial, Helvetica, sans-serif; color:#191919; background:#fff; text-align:center; }
a { color:#0a51e2; text-decoration:underline }
a:hover { color:#e20a4c; text-decoration:underline }
a img { border:none }
p { margin:0 0 1em 0; padding:0 }
ul { margin:0 0 1em 2em; padding:0 }
li { margin:0 0 .25em 0; padding:0 }
.spacer { height:0px; overflow:hidden; clear:both; display:block }

#wrapper { width:800px; margin:30px auto; background:#fff; background:rgba(255,255,255,0.9); text-align:left; padding:30px; border:solid 10px rgba(0,0,0,0.6) }

h1 { font:normal 30px/30px Arial, Helvetica, sans-serif; margin:0 0 20px 0; padding:0 0 10px 0; border-bottom:#8b8781 1px solid }

code { white-space:nowrap }

/* Showcase elements */
#box { overflow:hidden; margin:0 0 0 30px; padding:0 30px 30px 30px; zoom:1 }

#box a { 
	position:relative;
	float:left;
	width:100px; height:100px; overflow:hidden;
	margin:20px;
	line-height:100px;
	text-align:center;
	font-size:50px;
	text-decoration:none;
	overflow:hidden;
	cursor:pointer;
	color:#fff;
	background:#000;
	
	/* border-radius  */
	-webkit-border-radius:50px;
	-moz-border-radius:50px;
	border-radius:50px;
	
	/* text-shadow */
	-webkit-text-shadow:0 -1px 1px rgba(0,0,0,0.5);
	-moz-text-shadow:0 -1px 1px rgba(0,0,0,0.5);
	text-shadow:0 -1px 1px rgba(0,0,0,0.5);
	
	/* box-shadow */
	-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.75);
	-moz-box-shadow:0 5px 10px rgba(0,0,0,0.75);
	box-shadow:0 5px 10px rgba(0,0,0,0.75);
	
	/* circle transitions (shadow and top) */
	-webkit-transition:-webkit-box-shadow 0.2s ease-out, top 0.2s ease-out;
	-moz-transition:-moz-box-shadow 0.2s ease-out, top 0.2s ease-out;
	-o-transition:box-shadow 0.3s ease-out, top 0.2s ease-out;
	transition:box-shadow 0.3s ease-out, top 0.2s ease-out;
}
#box a:hover {
	top:-10px; left:0;
	-webkit-box-shadow:0 20px 30px rgba(0,0,0,0.5);
	-moz-box-shadow:0 20px 30px rgba(0,0,0,0.5);
	box-shadow:0 20px 30px rgba(0,0,0,0.5);
}
#box a span { 
	display:block;
	position:relative;
	overflow:hidden;
	width:100px;
	height:100px;
	
	
	-webkit-border-radius:50px;
	-moz-border-radius:50px;
	border-radius:50px;	
	
	/*-webkit-box-shadow:inset 0 -10px 40px rgba(0,0,0,0.75); /* chrome5 inset parameter doesn't fully work */
	-moz-box-shadow:inset 0 -10px 40px rgba(0,0,0,0.75);
	box-shadow:inset 0 -10px 40px rgba(0,0,0,0.75);
	
	/* inner shadow transitions */
	-webkit-transition:background 0.3s ease-out;  /* doesn't work, but maybe in future */
	-o-transition:box-shadow 0.3s ease-out;
	-moz-transition:-moz-box-shadow 0.3s ease-out;
	transition:box-shadow 0.3s ease-out;
	
	background:-webkit-gradient(radial, 50 40, 30, center center, 80, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.75))); /* use gradient instead */
	
}
#box a:hover span { 
	/*-webkit-box-shadow:inset 0 -10px 30px rgba(0,0,0,0.75);*/
	-moz-box-shadow:inset 0 -10px 30px rgba(0,0,0,0.75);
	box-shadow:inset 0 -10px 30px rgba(0,0,0,0.75);
	
	background:-webkit-gradient(radial, 50 30, 40, center center, 80, from(rgba(0,0,0,0)), to(rgba(0,0,0,0.75))); /* use gradient instead */
}

#box a:nth-child(1) { background:#d010aa }
#box a:nth-child(2) { background:#1066d0 }
#box a:nth-child(3) { background:#30d010 }
#box a:nth-child(4) { background:#d04610 }
#box a:nth-child(5) { background:#d010aa }



/*复选框*/ 
.gcs-checkbox {
	display: none;
} 
.gcs-checkbox+label {
	background-color: white;
	border-radius: 0px;
	border: 1px solid #d3d3d3;
	width: 48px;
	height: 48px;
	display: inline-block;
	text-align: center;
	vertical-align: bottom;
	line-height: 48px;
} 
.gcs-checkbox+label:hover {
	cursor: pointer;
	border: 1px solid #2783FB;
}
.gcs-checkbox:checked+label {
	background-color: #eee;
	background: #2783FB;
} 
.gcs-checkbox:checked+label:after {
	content: "\2714";
	color: white;
}

/*单选按钮*/ 
.gcs-radio {
	display: none;
} 
.gcs-radio+label {
	width: 48px;
	height: 48px;
	line-height: 48px;
	display: inline-block;
	text-align: center;
	vertical-align: bottom;
	border: 1px solid gray;
	border-radius: 50%;
} 
.gcs-radio+label:hover {
	border: 1px solid #2783FB;
	cursor: pointer;
} 
.gcs-radio:checked+label {
	background: #2783FB;
	border: 1px solid #2783FB;
} 
.gcs-radio:checked+label:after {
	content: "\2022";
	font-size: 35px;
	color: white;
}

/*表格*/
#customers {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	width:100%;
	border-collapse:collapse;
}
#customers td, #customers th {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	border:2px solid #98bf21;
	padding:10px 15px 10px 15px;
}
#customers th {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#A7C942;
	color:#ffffff;
}
#customers tr.alt td {
	color:#000000;
	background-color:#EAF2D3;
}

#custforms {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	width:100%;
	border-collapse:collapse;
}
#custforms th {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	border:2px solid #98bf21;
	padding:10px 15px 10px 15px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#A7C942;
	color:#ffffff;
}
#custforms td {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	border:2px solid #FFFFFF;
	padding:10px 15px 10px 15px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#FFFFFF;
	color:#003080;
}



/*表格*/
#customert {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	width:100%;
	border-collapse:collapse;
}
#customert td, #customert th {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	border:2px solid #335510;
	padding:10px 15px 10px 15px;
}
#customert th {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#688818;
	color:#ffffff;
}
#customers tr.alt td {
	color:#000000;
	background-color:#EAF2D3;
}

#custformt {
	font-family:"Trebuchet MS", Arial, Helvetica, sans-serif;
	width:100%;
	border-collapse:collapse;
}
#custformt th {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	border:2px solid #335510;
	padding:10px 15px 10px 15px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#688818;
	color:#ffffff;
}
#custformt td {
	font-size:3em;
	text-align:center;
	line-height: 48px;
	border:2px solid #FFFFFF;
	padding:10px 15px 10px 15px;
	padding-top:10px;
	padding-bottom:10px;
	background-color:#FFFFFF;
	color:#003080;
}





/*输入框*/
input {
	font-size:1em;
	text-align:center;
	width:80%;
	height:60px;
} 

select {
	text-align:center;
	width:80%;
	height:72px;
	font-size:1em;
} 

/*按钮*/
#button1 {
    width: 192px;
    height: 60px;
    font-size: 38px;
    font-family: 微软雅黑;
    letter-spacing: 8px;
    padding-left: 12px;
    border-radius: 5px;
    background: -webkit-linear-gradient(top, #66B5E6, #2e88c0);
    background: -moz-linear-gradient(top, #66B5E6, #2e88c0);
    background: linear-gradient(top, #66B5E6, #2e88c0);
    background: -ms-linear-gradient(top, #66B5E6, #2e88c0);
    border: 1px solid #2576A8;
    box-shadow: 0 1px 2px #B8DCF1 inset, 0 -1px 0 #316F96 inset;
    color: #fff;
    text-shadow: 1px 1px 0.5px #22629B;
}

#button1:hover {
    background: -webkit-linear-gradient(top, #8DC9EF, #4E9FD1);
    background: -moz-linear-gradient(top, #8DC9EF, #4E9FD1);
    background: linear-gradient(top, #8DC9EF, #4E9FD1);
    background: -ms-linear-gradient(top, #8DC9EF, #4E9FD1);
}

/*延时加减*/
.container {
  text-align: center;
}

.toggle {
  margin: 4px;
  display: inline-block;
}

.toggle {
  box-shadow: inset 0 0 35px 5px rgba(0, 0, 0, 0.25), inset 0 2px 1px 1px rgba(255, 255, 255, 0.9), inset 0 -2px 1px 0 rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  background: #ccd0d4;
  position: relative;
  height: 140px;
  width: 140px;
}
.toggle:before {
  box-shadow: 0 0 17.5px 8.75px white;
  border-radius: 118.3px;
  background: white;
  position: absolute;
  margin-left: -50.4px;
  margin-top: -50.4px;
  opacity: 0.2;
  content: "";
  height: 100.8px;
  width: 100.8px;
  left: 50%;
  top: 50%;
}
.toggle .button {
  -webkit-filter: blur(1px);
  -moz-filter: blur(1px);
  filter: blur(1px);
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.5), inset 0 -3px 4px -1px rgba(0, 0, 0, 0.2), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 3px 4px -1px rgba(255, 255, 255, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.8), inset 0 20px 30px 0 rgba(255, 255, 255, 0.2);
  border-radius: 96.32px;
  position: absolute;
  background: #ccd0d4;
  margin-left: -48.16px;
  margin-top: -48.16px;
  display: block;
  height: 96.32px;
  width: 96.32px;
  left: 50%;
  top: 50%;
}
.toggle .label {
  transition: color 300ms ease-out;
  text-shadow: 1px 1px 3px #ccd0d4, 0 0 0 rgba(0, 0, 0, 0.8), 1px 1px 4px white;
  line-height: 139px;
  text-align: center;
  position: absolute;
  font-weight: 700;
  font-size: 72px;
  display: block;
  opacity: 0.9;
  height: 100%;
  width: 100%;
  color: rgba(0, 0, 0, 0.4);
}
.toggle input {
  opacity: 0;
  position: absolute;
  cursor: pointer;
  z-index: 1;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}
.toggle input:active ~ .button {
  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 30px 1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 25px 0 rgba(0, 0, 0, 0.4), inset 0 0 10px 1px rgba(255, 255, 255, 0.6);
}
.toggle input:active ~ .label {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.45);
}
.toggle input:checked ~ .button {
  box-shadow: 0 15px 25px -4px rgba(0, 0, 0, 0.4), inset 0 -8px 25px -1px rgba(255, 255, 255, 0.9), 0 -10px 15px -1px rgba(255, 255, 255, 0.6), inset 0 8px 20px 0 rgba(0, 0, 0, 0.2), inset 0 0 5px 1px rgba(255, 255, 255, 0.6);
}
.toggle input:checked ~ .label {
  font-size: 40px;
  color: rgba(0, 0, 0, 0.4);
}

